home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / SpriteWorld 2.0 ƒ / SpriteWorld Examples / Stars / Stars.h < prev    next >
Encoding:
Text File  |  1996-09-03  |  564 b   |  33 lines  |  [TEXT/KAHL]

  1. ///--------------------------------------------------------------------------------------
  2. // Stars.h
  3. //
  4. // By: Vern Jensen
  5. ///--------------------------------------------------------------------------------------
  6.  
  7.  
  8. #ifndef __WINDOWS__
  9. #include <Windows.h>
  10. #endif
  11.  
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16.  
  17.  
  18. void    main( void );
  19. void    CreateSpriteWorld( void );
  20. void    CreateSprites( void );
  21.  
  22. void    RunAnimation( void );
  23. void    ShutDown( void );
  24. void    BallSpriteMoveProc(SpritePtr ballSpriteP);
  25.  
  26. void    SetUpStars( void );
  27. void    MoveStars( void );
  28.  
  29.  
  30. #ifdef __cplusplus
  31. }
  32. #endif
  33.